.carousel-indicators button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background-color: #ccc !important;
  margin: 5px !important;
}
.carousel-indicators .active {
  background-color: #ffff !important;
  transform: scale(1.2) !important;
}
.carousel-caption {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: white ;
  padding: 20px;
  width: 80%;
  max-width: 800px;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 0;
}
.carousel-caption h2{
  font-size:6ch;
  font-weight: bolder;
  font-family: Josefin Sans;
}
.carousel-caption p{
  position:fixed;
  font-family: Josefin Sans;
}
@media (max-width: 576px) {
  .carousel-caption {
    font-size: 14px;
    padding: 10px;
    /* top: 55%; */
  }
  .carousel-caption h2 {
    font-size: 4ch;
  }
  .carousel-caption p {
    font-size: 12px;
  }
}

/* Medium screens (576px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
  .carousel-caption {
    font-size: 2ch;
    padding: 15px;
    /* top:60% */
  }
  .carousel-caption h2 {
    font-size: 20px;
  }
  .carousel-caption p {
    font-size: 14px;
  }
}

/* Large screens (769px and up) */
@media (min-width: 769px) {
  .carousel-caption {
    font-size: 18px;
    padding: 20px;
  }
}
.carousel-item.active .carousel-caption {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
